home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet internetowy / Przegladarki internetowe / Mozilla Seamonkey 1.0.5 pl / seamonkey-1.0.5.pl-PL.win32.installer.exe / CHATZILLA.XPI / bin / chrome / chatzilla.jar / content / chatzilla / chatzilla.xul < prev    next >
Encoding:
Extensible Markup Language  |  2005-07-05  |  7.2 KB  |  167 lines

  1. <?xml version="1.0"?>
  2.  
  3. <!-- ***** BEGIN LICENSE BLOCK *****
  4.    - Version: MPL 1.1/GPL 2.0/LGPL 2.1
  5.    -
  6.    - The contents of this file are subject to the Mozilla Public License Version
  7.    - 1.1 (the "License"); you may not use this file except in compliance with
  8.    - the License. You may obtain a copy of the License at
  9.    - http://www.mozilla.org/MPL/
  10.    -
  11.    - Software distributed under the License is distributed on an "AS IS" basis,
  12.    - WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
  13.    - for the specific language governing rights and limitations under the
  14.    - License.
  15.    -
  16.    - The Original Code is JSIRC Test Client #3.
  17.    -
  18.    - The Initial Developer of the Original Code is
  19.    - New Dimensions Consulting, Inc.
  20.    - Portions created by the Initial Developer are Copyright (C) 1999
  21.    - the Initial Developer. All Rights Reserved.
  22.    -
  23.    - Contributor(s):
  24.    -   Robert Ginda, rginda@ndcico.com, original author
  25.    -   Josh Soref, timeless@mac.com, international support
  26.    -   Chiaki Koufugata chiaki@mozilla.gr.jp UI i18n
  27.    -
  28.    - Alternatively, the contents of this file may be used under the terms of
  29.    - either the GNU General Public License Version 2 or later (the "GPL"), or
  30.    - the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
  31.    - in which case the provisions of the GPL or the LGPL are applicable instead
  32.    - of those above. If you wish to allow use of your version of this file only
  33.    - under the terms of either the GPL or the LGPL, and not to allow others to
  34.    - use your version of this file under the terms of the MPL, indicate your
  35.    - decision by deleting the provisions above and replace them with the notice
  36.    - and other provisions required by the GPL or the LGPL. If you do not delete
  37.    - the provisions above, a recipient may use your version of this file under
  38.    - the terms of any one of the MPL, the GPL or the LGPL.
  39.    -
  40.    - ***** END LICENSE BLOCK ***** -->
  41.  
  42. <!DOCTYPE window SYSTEM "chrome://chatzilla/locale/chatzilla.dtd">
  43.  
  44. <?xml-stylesheet href="chrome://global/skin/" type="text/css"?>
  45. <?xml-stylesheet href="chrome://chatzilla/skin/chatzilla.css" type="text/css"?>
  46.  
  47. <?xul-overlay href="chrome://global/content/globalOverlay.xul"?>
  48. <?xul-overlay href="chrome://chatzilla/content/scripts.xul"?>
  49. <?xul-overlay href="chrome://chatzilla/content/popups.xul"?>
  50. <?xul-overlay href="chrome://chatzilla/content/menus.xul"?>
  51.  
  52. <window id="chatzilla-window"
  53.   xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
  54.   xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"
  55.   orient="vertical" onload="onLoad();" onunload="onUnload();"
  56.   onclose="return onClose();" onmouseover="onMouseOver(event);"
  57.   persist="width height screenX screenY sizemode" windowtype="irc:chatzilla">
  58.   
  59.   <overlaytarget id="scripts-overlay-target"/>
  60.   <overlaytarget id="popup-overlay-target"/>
  61.   <overlaytarget id="menu-overlay-target"/>
  62.   <stringbundleset id="chatzilla-stringbundle">
  63.     <stringbundle id="findBundle" src="chrome://global/locale/finddialog.properties"/>
  64.   </stringbundleset>
  65.  
  66.     <vbox id="upper-box" flex="1">
  67.       <hbox id="tabpanels-contents-box" flex="1">
  68.         <vbox id="user-list-box" width="125" persist="collapsed width">
  69.  
  70.           <tree id="user-list" container="true" datasources="rdf:null" flex="1"
  71.             containment="http://home.netscape.com/NC-irc#chanuser"
  72.             hidecolumnpicker="true"
  73.             context="context:userlist">
  74.  
  75.             <template>
  76.               <rule>
  77.                 <conditions>
  78.                   <content uri="?container"/>
  79.                   <member container="?container" child="?member"/>
  80.                 </conditions>
  81.                 
  82.                 <bindings>
  83.                   <binding subject="?member" predicate="http://home.netscape.com/NC-irc#sortname" object="?sortname"/>
  84.                   <binding subject="?member" predicate="http://home.netscape.com/NC-irc#op" object="?op"/>
  85.                   <binding subject="?member" predicate="http://home.netscape.com/NC-irc#halfop" object="?halfop"/>
  86.                   <binding subject="?member" predicate="http://home.netscape.com/NC-irc#voice" object="?voice"/>
  87.                   <binding subject="?member" predicate="http://home.netscape.com/NC-irc#nick" object="?nick"/>
  88.                   <binding subject="?member" predicate="http://home.netscape.com/NC-irc#unicodeName" object="?unicodeName"/>
  89.                   <binding subject="?member" predicate="http://home.netscape.com/NC-irc#away" object="?away"/>
  90.                 </bindings>
  91.                 
  92.                 <action>
  93.                   <treechildren>
  94.                     <treeitem uri="?member" flex="1"
  95.                       properties="op-?op halfop-?halfop voice-?voice away-?away">
  96.                       <treerow>
  97.                           <treecell properties="op-?op halfop-?halfop voice-?voice away-?away"
  98.                            label="?nick" unicodeName="?unicodeName"/>
  99.                       </treerow>
  100.                     </treeitem>
  101.                   </treechildren>
  102.                 </action>
  103.               </rule>
  104.             </template>
  105.     
  106.             <treecols>
  107.               <treecol id="usercol" hideheader="true" flex="1"
  108.                 properties="op-?op halfop-?halfop voice-?voice away-?away"/>
  109.             </treecols>
  110.           </tree>
  111.     
  112.         </vbox> <!-- user-list-box -->
  113.   
  114.         <splitter id="main-splitter" collapse="before" persist="collapsed left">
  115.           <grippy/>
  116.         </splitter>
  117.   
  118.         <vbox flex="1">
  119.           <deck id="output-deck" flex="1"/>
  120.         </vbox>
  121.   
  122.       </hbox> <!-- tabpanels-contents-box -->
  123.     
  124.       <hbox id="tabstrip-box" flex="0" crop="right">
  125.         <hbox id="view-tabs" persist="collapsed" flex="1">
  126.           <scrollbox flex="1">
  127.             <tabs class="tabs-bottom" id="views-tbar-inner" flex="1" crop="right">
  128.               <tab collapsed="true"/> <!-- dummy tab to keep the freaking xbl from
  129.                                            causing an exception -->
  130.             </tabs>
  131.             <spacer id="views-tbar-spacer"/>
  132.           </scrollbox>
  133.         </hbox>
  134.       </hbox>
  135.   
  136.     </vbox> <!-- upper-box -->
  137.   
  138.     <splitter id="input-splitter" orient="vertical" collapse="after"
  139.       collapsed="true"/>
  140.   
  141.     <hbox id="input-widgets">
  142.       <button id="server-nick" type="menu" label=""/>
  143.       <hbox id="multiline-box" flex="1" collapsed="true">
  144.         <textbox id="multiline-input" multiline="true" flex="1" height="100px"
  145.           class="multiline-input-widget" onfocus="onInputFocus();"/>
  146.         <vbox>
  147.           <toolbarbutton id="button-input" flex="1"
  148.             oncommand="onMultilineSend(event);"
  149.             tooltiptext="&multiline-send.tooltip;" />
  150.           <toolbarbutton id="button-multiline-contract"
  151.             oncommand="dispatch('pref multiline false');" 
  152.             tooltiptext="&multiline-contract.tooltip;" />
  153.         </vbox>
  154.       </hbox>
  155.       <hbox id="singleline-box" flex="1" collapsed="true">
  156.         <textbox id="input" class="input-widget" flex="1"
  157.           onfocus="onInputFocus();"/>
  158.         <toolbarbutton id="button-multiline-expand" 
  159.           oncommand="dispatch('pref multiline true');" 
  160.           tooltiptext="&multiline-expand.tooltip;"/>
  161.       </hbox>
  162.     </hbox>
  163.   
  164.   <overlaytarget id="statusbar-overlay-target"/>
  165.  
  166. </window>
  167.